home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / NeuroSim 1.0 / .h / CMyCaption.h next >
Text File  |  1996-02-19  |  578b  |  22 lines

  1. // ===========================================================================
  2. //    CMyCaption.h                 ©1995 Timo Eloranta
  3. // ===========================================================================
  4. //    A subclass of LCaption which uses TETextBox for drawing just like
  5. //  LCaption did before this changed in CW7...
  6.  
  7. #pragma once
  8.  
  9. #include <LCaption.h>
  10.  
  11. class    CMyCaption : public LCaption
  12. {
  13.     public:
  14.         enum { class_ID = 'mCap' };
  15.         static CMyCaption*    CreateMyCaptionStream( LStream *inStream);
  16.     
  17.                             CMyCaption( LStream    *inStream);
  18.     
  19.     protected:
  20.         virtual void        DrawSelf();
  21. };
  22.